76fdcc4ce3faf3e2d6955e9cfae3c1e0bd634f9a,bxbot-exchanges/src/main/java/com/gazbert/bxbot/exchanges/ItBitExchangeAdapter.java,ItBitExchangeAdapter,getBalanceInfo,#,468

Before Change


            final Map<String, String> params = getRequestParamMap();
            params.put("userId", userId);

            final ExchangeHttpResponse response = sendAuthenticatedRequestToExchange("GET", "wallets", params);
            LOG.debug(() -> "Balance Info response: " + response);

            if (response.getStatusCode() == HttpURLConnection.HTTP_OK) {

After Change


            final Map<String, String> params = getRequestParamMap();
            params.put("userId", userId);

            response = sendAuthenticatedRequestToExchange("GET", "wallets", params);
            if (LOG.isDebugEnabled()) {
                LOG.debug("Balance Info response: " + response);
            }

            if (response.getStatusCode() == HttpURLConnection.HTTP_OK) {